home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Creative Review 34
/
Creative-Review-CD-ROM-34.iso
/
pc
/
foo
/
foos.dir
/
00092_Script_Video Stop
< prev
next >
Wrap
Text File
|
1998-01-23
|
716b
|
31 lines
-- Video Stop MouseUp
-- a control
property videoSprite -- the sprite number that is getting controlled
on mouseUp me
set the movieRate of sprite the VideoSprite of me = 0
end
---
on getPropertyDescriptionList
set p_list = [ ¼
#videoSprite: [ #comment: "Video Sprite Channel:", ¼
#format: #integer, ¼
#default: 1 ] ¼
]
return p_list
end
on getBehaviorDescription
return ¼
"Stops a digital video playing in the current frame. Attach to a button with the appropriate label." & RETURN & ¼
"PARAMETERS:" & RETURN & ¼
"ò Video Sprite - Enter number of the sprite channel in which the video is displayed."
end